home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
lib
/
man
/
reindex
< prev
Wrap
Text File
|
1991-08-16
|
246b
|
12 lines
#!/bin/csh -f
#
# Reindex the man pages.
# Ken Shirriff 9/90
foreach i (`awk '/^\//{print $1}' /sprite/lib/man/config`)
echo $i
cd $i
#Skip directories without an index file; e.g. sww man pages
if (-e index) man -i *.man > index
end